home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 10.st / info_src.arc / SUBR.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1990-02-01  |  42.8 KB  |  1,249 lines

  1. {InfoBaseST by James W. Maki (c) Copyright 1990 by Antic Publishing, Inc.}
  2. {$M+}
  3. {$E+}
  4.  
  5. Program SubRoutine_Module;
  6.  
  7.       {$I A:GEMSUBS.PAS }
  8.       {$I A:AUXSUBS.PAS }
  9.  
  10.  Const
  11.       {$I B:MOD_CONS.PAS }
  12.  
  13.  Type
  14.       {$I B:MOD_TYPE.PAS }
  15.  
  16.  Var
  17.       {$I B:MOD_VAR.PAS }
  18.  
  19. { ************************************************************************ }
  20. { *************************************************************************
  21.      Subtracts memory from MaxMem to reflect decrease in Heap size due to
  22.      New() calls.  RecSize is the size of a single record, in bytes.
  23. ************************************************************************* }
  24.   procedure MinusMemAvail( RecSize : long_integer ) ;
  25.  
  26.       begin
  27.         MaxMem := MaxMem - RecSize ;
  28.         if MaxMem < 12000 then
  29.            if NOT FullMemory then
  30.               FullMemory := true ;
  31.       end ;
  32.       
  33. { *************************************************************************
  34.      Adds memory back to MaxMem to reflect increase in Heap size due to
  35.      Dispose() calls.  RecSize is the size of a single record, in bytes.
  36. ************************************************************************* }
  37.   procedure PlusMemAvail( RecSize : long_integer ) ;
  38.  
  39.       begin
  40.         MaxMem := MaxMem + RecSize ;
  41.         if MaxMem > 11999 then
  42.            FullMemory := false ;
  43.       end ;
  44.  
  45. { *************************************************************************
  46.      Place the cursor in the first position of the first Screen Info
  47.      Field.
  48. ************************************************************************* }
  49.   procedure ClrHome ;
  50.   
  51.      begin
  52.        S_CurrentRec[ScrNum] := S_FirstRec[ScrNum] ;
  53.        S_CurrentRec[ScrNum]^.XInPos := 0 ;
  54.        XCur := S_CurrentRec[ScrNum]^.XPos ;
  55.        YCur := S_CurrentRec[ScrNum]^.YPos ;
  56.        C_CurRec := C_FirstRec ;
  57.      end ;
  58.  
  59. { *************************************************************************     
  60.      D_DisposeRecs will remove all Data Records and release the
  61.      memory back to the system.
  62. ************************************************************************* }
  63.   procedure D_DisposeRecs(Var FirstRec, CurRec, LastRec : DataPtr ) ;
  64.  
  65.     var
  66.        DeleteRec    : DataPtr ;
  67.        CurStoreRec,
  68.        DelStoreRec  : DataStorePtr ;
  69.         
  70.      begin
  71.        CurRec := FirstRec ;
  72.        While CurRec <> nil do
  73.           begin
  74.             CurStoreRec := CurRec^.Data ;
  75.             While CurStoreRec <> nil do
  76.                begin
  77.                  DelStoreRec := CurStoreRec ;
  78.                  CurStoreRec := CurStoreRec^.Next ;
  79.                  Dispose(DelStoreRec) ;
  80.                  PlusMemAvail( DataRecSize ) ;
  81.                end ;
  82.             DeleteRec := CurRec ;
  83.             CurRec    := CurRec^.Next ;
  84.             TotalRec[DataNum] := TotalRec[DataNum] - 1 ;
  85.             Dispose(DeleteRec) ;
  86.             PlusMemAvail( PtrRecSize ) ;
  87.           end ;
  88.        CurRec   := nil ;
  89.        FirstRec := nil ;
  90.        LastRec  := nil ;
  91.      end ;
  92.  
  93. { *************************************************************************
  94.      DetCurRec is used to calculate the member of the data storage linked
  95.      list that is "Current".  This is accomplished by stepping through the
  96.      list a number of times determined by the variable Location, which
  97.      corresponds to the offset into the logical string.
  98. ************************************************************************* }
  99.   procedure DetCurRec(    D_CurRec : DataStorePtr ;
  100.                       Var CurRec   : DataStorePtr ;  
  101.                       Var Location : short_integer ) ;
  102.  
  103.     Var
  104.        Counter : short_integer ;
  105.        
  106.      begin
  107.        Counter := Location DIV 50 ;
  108.        CurRec := D_CurRec ;
  109.  
  110.        While Counter > 0 do
  111.           begin
  112.             CurRec := CurRec^.Next ;
  113.             Counter := Counter - 1 ;
  114.             Location := Location - 50 ;
  115.           end ;
  116.      end ;
  117.  
  118. { *************************************************************************
  119.      GetChar calls DetCurRec to find the correct Data storage member of
  120.      the linked list, and then extracts the character represented by
  121.      Position, the offset determined by the current cursor location.
  122. ************************************************************************* }
  123.   procedure GetChar(      CurRec  : ScrPtr ;
  124.                         D_CurRec  : DataPtr ; 
  125.                     Var Character : StrChar ;
  126.                         Position  : short_integer ) ;
  127.  
  128.     Var
  129.        DataRec  : DataStorePtr ;
  130.  
  131.      begin
  132.        if D_CurRec <> nil then
  133.           begin
  134.             DetCurRec(D_CurRec^.Data, DataRec, Position ) ;
  135.             Character := Copy(DataRec^.DataStr, Position + 1, 1) ;
  136.           end
  137.        else
  138.           Character := ' ' ;
  139.      end ;
  140.  
  141. { *************************************************************************
  142.      CheckOverLap will check all of the records to make sure that
  143.      no part of record or title will be obscured by two records
  144.      occupying the same area.  OverLap will be returned as true if
  145.      an overlap occurs and false if no overlap is present.
  146. ************************************************************************* }
  147.   procedure CheckOverLap( NewRec : ScrPtr ; X, Y : short_integer ; 
  148.                          Var OverLap : boolean ) ;
  149.  
  150.     var
  151.         CurRec : ScrPtr ;
  152.  
  153. { *************************************************************************
  154.      CompareX compares two ScrPtr records to determine if their
  155.      coordinants overlap.
  156. ************************************************************************* }
  157.   procedure CompareX( FirstRec, SecondRec : ScrPtr ; 
  158.                       XNew, XOld : short_integer ) ;
  159.  
  160.       begin
  161.         if ((FirstRec^.Next = SecondRec) AND 
  162.             (FirstRec^.DataType = 'H') AND
  163.             (SecondRec^.DataType = 'D')) OR
  164.            ((SecondRec^.Next = FirstRec) AND 
  165.             (SecondRec^.DataType = 'H') AND
  166.             (FirstRec^.DataType = 'D')) then
  167.            OverLap := false
  168.         else
  169.            if FirstRec^.DataType = 'H' then
  170.               begin
  171.                 if (XNew + Length(FirstRec^.LabelStr) + 
  172.                     FirstRec^.Size + 6 > XOld) AND
  173.                     (FirstRec <> SecondRec) then
  174.                     OverLap := true ;
  175.               end 
  176.            else 
  177.               if SecondRec^.DataType = 'H' then
  178.                  begin
  179.                    if (XNew + Length(FirstRec^.LabelStr) + 
  180.                        FirstRec^.Size + 2 > XOld) AND
  181.                       (FirstRec <> SecondRec) then
  182.                       OverLap := true ;
  183.                  end 
  184.               else
  185.                  if (XNew + Length(FirstRec^.LabelStr) + 
  186.                      FirstRec^.Size + 4 > XOld) AND
  187.                     (FirstRec <> SecondRec) then
  188.                     OverLap := true ;
  189.       end ;
  190.  
  191.      begin
  192.        OverLap := false ;
  193.        CurRec  := S_FirstRec[ScrNum] ;
  194.        While CurRec <> nil do
  195.           if (Y = CurRec^.Y) then
  196.              begin
  197.                if X <= CurRec^.X then
  198.                   CompareX(NewRec, CurRec, X, CurRec^.X)
  199.                else
  200.                   CompareX(CurRec, NewRec, CurRec^.X, X) ;
  201.                   
  202.                if OverLap then
  203.                   CurRec := nil
  204.                else
  205.                   CurRec := CurRec^.Next ;
  206.              end
  207.           else
  208.              CurRec := CurRec^.Next 
  209.      end ;
  210.  
  211. { *************************************************************************
  212.      CheckCurLoc will check the current location of the cursor to see if
  213.      it is overlapping another record.  CurLoc will return -1 if no 
  214.      overlap is found and the X offset into the record if the current
  215.      cursor location is within an existing record.
  216. ************************************************************************* }
  217.   procedure CheckCurLoc(Var CurLoc : short_integer ;
  218.                         Var Current : ScrPtr ; 
  219.                             XPos, YPos, ScrMode : short_integer ) ;
  220.  
  221.     var
  222.         CurRec : ScrPtr ;
  223.  
  224.      begin
  225.        CurLoc := -1 ;
  226.        CurRec := S_FirstRec[ScrMode] ;
  227.        C_CurRec := C_FirstRec ;
  228.        While CurRec <> nil do
  229.           begin
  230.             if YPos = CurRec^.Y then
  231.                if (XPos >= CurRec^.X) AND
  232.                   (XPos <= CurRec^.X + CurRec^.Size + 
  233.                             Length(CurRec^.LabelStr) + 3) then
  234.                   begin
  235.                     CurLoc := XPos - CurRec^.X ;
  236.                     Current := CurRec ;
  237.                     CurRec := nil ;
  238.                   end ;
  239.              
  240.             if CurRec <> nil then
  241.                begin
  242.                  CurRec := CurRec^.Next ;
  243.                  if C_CurRec <> nil then
  244.                     C_CurRec := C_CurRec^.Next ;
  245.                end ;
  246.           end ;
  247.      end ;
  248.  
  249. { *************************************************************************     
  250.      DisposeRecs will remove all Screen Data Records and release the
  251.      memory back to the system.
  252. ************************************************************************* }
  253.   procedure DisposeRecs(Var FirstRec, CurRec, LastRec : ScrPtr ) ;
  254.  
  255.     var
  256.        DeleteRec : ScrPtr ;
  257.         
  258.      begin
  259.        CurRec := FirstRec ;
  260.        While CurRec <> nil do
  261.           begin
  262.             DeleteRec := CurRec ;
  263.             CurRec    := CurRec^.Next ;
  264.             Dispose(DeleteRec) ;
  265.             PlusMemAvail( ScrRecSize ) ;
  266.           end ;
  267.        FirstRec := nil ;
  268.        CurRec   := nil ;
  269.        LastRec  := nil ;
  270.      end ;
  271.  
  272. { *************************************************************************     
  273.      DisposeInt will remove all Integer Pointer Records and release the
  274.      memory back to the system.
  275. ************************************************************************* }
  276.   procedure DisposeInt(Var FirstRec, CurRec, LastRec : IntPtr ) ;
  277.  
  278.     var
  279.        DeleteRec : IntPtr ;
  280.         
  281.      begin
  282.        CurRec := FirstRec ;
  283.        While CurRec <> nil do
  284.           begin
  285.             DeleteRec := CurRec ;
  286.             CurRec    := CurRec^.Next ;
  287.             Dispose(DeleteRec) ;
  288.             F_TotalRec[DataNum] := F_TotalRec[DataNum] - 1 ;
  289.           end ;
  290.        FirstRec := nil ;
  291.        LastRec  := nil ;
  292.        CurRec   := nil ;
  293.      end ;
  294.  
  295. { *************************************************************************
  296.      CalcOffset will calculate the offset value for Screen Data Records.
  297. ************************************************************************* }
  298.   procedure CalcOffset(    FirstRec, LastRec : ScrPtr ; 
  299.                        Var OffsetTotal : short_integer ) ;
  300.  
  301.     var
  302.        CurRec : ScrPtr ;
  303.  
  304.      begin
  305.        CurRec := FirstRec ;
  306.        While CurRec <> LastRec do
  307.           begin
  308.             OffsetTotal := OffsetTotal + CurRec^.Size ;
  309.             CurRec := CurRec^.Next ;
  310.           end ;
  311.      end ;
  312.  
  313. { *************************************************************************
  314.      ModifyStr adds a character, InChar to the proper member of the linked
  315.      Data Storage list, signified by SourceStr.
  316. ************************************************************************* }
  317.   procedure ModifyStr(CurRec : DataPtr ; Location : short_integer ; 
  318.                       InChar : char) ;
  319.  
  320.      begin
  321.        DetCurRec(CurRec^.Data, D_DataRec, Location) ;
  322.        Delete(D_DataRec^.DataStr, Location + 1, 1) ;
  323.        Insert(InChar, D_DataRec^.DataStr, Location + 1) ;
  324.      end ;
  325.  
  326. { *************************************************************************
  327.      FillString fills the string variable FillStr with chr(FillChar).  This
  328.      distiguishes between a space and an unfilled portion of the 
  329.      data storage string.
  330. ************************************************************************* }
  331.   procedure FillString(Var FillStr : Str50 ; FillChar : char ) ;
  332.  
  333.     var
  334.        i : short_integer ;
  335.        
  336.      begin
  337.        FillStr := FillChar ;
  338.        for i := 1 to 49 do
  339.            FillStr := Concat(FillStr, FillChar) ;
  340.      end ;
  341. { *************************************************************************
  342. ************************************************************************* }
  343.   procedure ModGetStr(Var FormatStr : Str255) ;
  344.  
  345.    var
  346.       j         : short_integer ;
  347.       CheckChar : char ;
  348.  
  349.     begin
  350.       for j := 1 to Length(FormatStr) do
  351.           begin
  352.             CheckChar := FormatStr[j] ;
  353.             if ord(CheckChar) > $7F then
  354.                FormatStr[j] := chr(ord(CheckChar) - $80 + $41) ;
  355.           end ; 
  356.     end ;
  357. { *************************************************************************
  358.      GetStr assembles a record string from the pieces apportioned over
  359.      several data string storage records.
  360. ************************************************************************* }
  361.   procedure GetStr(CurRec   : DataPtr ; Var DisplayStr : Str255 ;
  362.                    StartPos, Size : short_integer ) ;
  363.  
  364.     Var
  365.        DataRec  : DataStorePtr ;
  366.        i,
  367.        EndPos   : short_integer ;
  368.  
  369.      begin
  370.        DetCurRec(CurRec^.Data, DataRec, StartPos ) ;
  371.        DisplayStr := '' ;
  372.        EndPos := (StartPos + Size) DIV 50 ;
  373.        for i := 1 to EndPos + 1 do
  374.            begin
  375.              DisplayStr := Concat(DisplayStr, DataRec^.DataStr) ;
  376.              DataRec := DataRec^.Next ;
  377.            end ;
  378.  
  379.        if StartPos > 0 then
  380.           Delete(DisplayStr, 1, StartPos) ;
  381.        EndPos := Pos(chr($01), DisplayStr) ;
  382.        if EndPos > 0 then
  383.           FormatStr := Copy(DisplayStr, 1, EndPos - 1)
  384.        else
  385.           FormatStr := DisplayStr ;
  386.  
  387.        if Size < Length(FormatStr) then
  388.           DisplayStr := Copy(FormatStr, 1, Size)
  389.        else
  390.           DisplayStr := FormatStr ;
  391.  
  392.        if Mode = 4 then
  393.           begin
  394.             if DisplayStr[1] = chr($03) then 
  395.                DisplayStr[1] := chr($01) ;
  396.           end ;
  397.      end ;
  398.  
  399. { *************************************************************************
  400.      Using the spaces between names as a guide, this routine takes a name
  401.      in the order, FIRST MIDDLE LAST and returns the same name in the
  402.      order : LAST FIRST MIDDLE.  Useful for sorting on a NAME field.
  403. ************************************************************************* }
  404.   procedure LastNameFirst( Var Name : Str255) ;
  405.   
  406.     var
  407.        Len1,
  408.        Len2,
  409.        ChkChr   : short_integer ;
  410.        TempChar : StrChar ;
  411.        CommaLimit,
  412.        SaveName : Str255 ;
  413.        
  414.      begin
  415.        ChkChr := Pos(chr($2C), Name) ;
  416.        if (ChkChr > 0) AND (Length(Name) > 0) then
  417.           begin
  418.             CommaLimit := Copy(Name, ChkChr, Length(Name) - ChkChr + 1) ;
  419.             Delete(Name, ChkChr, Length(Name) - ChkChr + 1) ;
  420.           end ;
  421.  
  422.        SaveName := Name ;
  423.          
  424.        Repeat
  425.          Len1 := Length(Name) ;
  426.          if Len1 > 0 then
  427.             TempChar := Copy(Name, Len1, 1) ;
  428.          if (TempChar = ' ') AND (Len1 > 1) then
  429.             Delete(Name, Len1, 1) ;
  430.          TempChar := Copy(Name, 1, 1) ;
  431.          if (TempChar = ' ') AND (Len1 > 1) then
  432.             Delete(Name, Len1, 1) ;
  433.        Until (TempChar <> ' ') OR (Len1 < 2) ;
  434.  
  435.        ChkChr := Pos(' ', Name) ;
  436.        if (ChkChr > 0) AND (Length(Name) > 2) then
  437.           begin
  438.             Repeat
  439.               ChkChr := Pos(' ', Name) ;
  440.               if ChkChr > 0 then
  441.                  Delete(Name, 1, ChkChr) ;
  442.             Until ChkChr = 0 ;
  443.  
  444.             Len1 := Length(SaveName) ;
  445.             Len2 := Length(Name) ;
  446.             Delete(SaveName, Len1 - Len2, Len2 + 1) ;
  447.             Name := Concat(Name, ' ', SaveName) ;
  448.           end ;
  449.  
  450.        if Length(CommaLimit) > 0 then
  451.           Name := Concat(Name, CommaLimit) ;
  452.      end ;
  453.  
  454. { *************************************************************************
  455.      NewCursor will display the cursor, either an underline or an inverse
  456.      letter at the current cursor position as defined by XCur and YCur.
  457.      Usually follows a call to EraseCursor.
  458. ************************************************************************* }
  459.   procedure NewCursor(ScrMode : short_integer) ;
  460.  
  461.     var
  462.        CurLoc    : short_integer ;
  463.        CurRec    : ScrPtr ;
  464.        CurChar   : StrChar ;
  465.        RepeatCheck,
  466.        UnderLine : boolean ;
  467.  
  468. { *************************************************************************
  469. ************************************************************************* }
  470.     procedure CursorInput ;
  471.      
  472.         begin
  473.           Text_Color(White) ;
  474.           Paint_Color(Black) ;
  475.           Paint_Style(1) ;
  476.   
  477.           if Resolution = 2 then
  478.              Paint_Rect(x + XCur * 8,
  479.                         y + YCur * Spacing - 13, 8, 17)
  480.           else
  481.              Paint_Rect(x + XCur * 8,
  482.                         y + YCur * Spacing - 6, 8, 8) ;
  483.  
  484.           Draw_Mode(2) ;
  485.           Draw_String(x + XCur * 8, y + YCur * Spacing, 
  486.              CurChar) ;
  487.           Text_Style(Normal) ;
  488.           Text_Color(Black) ;
  489.           Paint_Color(White) ;
  490.           Draw_Mode(1) ;
  491.         end ;
  492.  
  493. { *************************************************************************
  494. ************************************************************************* }
  495.      procedure CursorLabel ;
  496.      
  497.         begin
  498.           CurChar := Copy(CurRec^.LabelStr, CurLoc + 1, 1) ;
  499.           CursorInput ;
  500.         end ;
  501.  
  502. { *************************************************************************
  503. ************************************************************************* }
  504.      procedure NC_Update ;
  505.      
  506.         procedure CheckMode( Var Flag : boolean ) ;
  507.      
  508.            begin
  509.              if (Mode = 2) OR (Mode = 3) OR (Mode = 4) then
  510.                 begin
  511.                   GetChar(S_CurrentRec[ScrMode], D_CurrentRec[ScrMode], 
  512.                           CurChar, S_CurrentRec[ScrMode]^.XInPos + 
  513.                                    S_CurrentRec[ScrMode]^.Offset) ;
  514.                   if CurChar = chr(1) then
  515.                      UnderLine := true
  516.                   else
  517.                      if (CurChar = '$') AND 
  518.                         (S_CurrentRec[ScrMode]^.DataType = 'F') AND
  519.                         (CurLoc = Length(CurRec^.LabelStr) + 3) then
  520.                         begin
  521.                           XCur := XCur + 1 ;
  522.                           CurLoc := CurLoc + 1 ;
  523.                           S_CurrentRec[ScrMode]^.XInPos := 
  524.                                        S_CurrentRec[ScrMode]^.XInPos + 1 ;
  525.                           Flag := false ;
  526.                         end 
  527.                      else
  528.                         begin
  529.                           if CurChar = chr(3) then
  530.                              CurChar := chr(1) ;
  531.                           CursorInput ;
  532.                         end ;
  533.                 end
  534.              else
  535.                 UnderLine := true ;
  536.            end ;
  537.  
  538.         begin
  539.           if (CurLoc > Length(CurRec^.LabelStr) + 2) AND
  540.              (CurLoc < Length(CurRec^.LabelStr) + 3 + CurRec^.Size) then
  541.               Repeat                            { 3 then 2 }
  542.                 RepeatCheck := true ;
  543.                 CheckMode(RepeatCheck) ;
  544.               Until RepeatCheck
  545.           else
  546.              if CurLoc + 1 > Length(CurRec^.LabelStr) then
  547.                 UnderLine := true
  548.              else
  549.                 CursorLabel ;
  550.         end ;
  551.  
  552. { *************************************************************************
  553. ************************************************************************* }
  554.      procedure CheckLines ;
  555.      
  556.         begin
  557.           XCur := XCur + 1 ;
  558.           CurLoc := CurLoc + 1 ;
  559.           UnderLine := true ;
  560.         end ;
  561.  
  562. { *************************************************************************
  563. ************************************************************************* }
  564.      procedure UpdateCursor ;
  565.      
  566.         begin
  567.           if (CurLoc = Length(CurRec^.LabelStr) + 2) OR
  568.              (CurLoc = Length(CurRec^.LabelStr) + 3 + CurRec^.Size) then
  569.              CheckLines
  570.           else
  571.              NC_Update ;
  572.         end ;
  573.  
  574.      procedure NewCursor5 ;
  575.      
  576.        var
  577.           HiChar : char ;
  578.  
  579.         begin
  580.           GetChar(S_CurrentRec[ScrMode], D_CurrentRec[ScrMode], 
  581.                   CurChar, S_CurrentRec[ScrMode]^.Offset + XCur - 1) ;
  582.           HiChar := CurChar[1] ;
  583.           if ord(HiChar) > $7F then 
  584.              CurChar := chr(ord(HiChar) - $80 + $41) ;
  585.  
  586.           Text_Color(White) ;
  587.           Paint_Color(Black) ;
  588.           Paint_Style(1) ;
  589.           Paint_Rect(x + (XCur - RW_Offset) * 8,
  590.                      y + YCur * Spacing - 10 * Resolution,
  591.                      8, 8 * Resolution) ;  
  592.           Draw_Mode(2) ;
  593.           Draw_String(x + (XCur - RW_Offset) * 8 , 
  594.                       y + YCur * Spacing - 4 * Resolution, 
  595.                       CurChar) ;
  596.           Text_Style(Normal) ;
  597.           Text_Color(Black) ;
  598.           Paint_Color(White) ;
  599.           Draw_Mode(1) ;
  600.         end ;
  601.  
  602.      begin
  603.        Hide_Mouse ;
  604.        if Mode = 5 then
  605.           NewCursor5
  606.        else
  607.           begin
  608.             UnderLine := false ;
  609.             CheckCurLoc(CurLoc, CurRec, XCur, YCur, ScrMode) ;
  610.  
  611.             if CurLoc >= 0 then
  612.                UpdateCursor
  613.             else
  614.                UnderLine := true ;
  615.  
  616.             if UnderLine then
  617.                Draw_String(x + XCur * 8, y + YCur * Spacing, '_') ;
  618.           end ;
  619.        Show_Mouse ;
  620.      end ;
  621.  
  622. { *************************************************************************
  623.      EraseCursor will erase the cursor at the current cursor position as
  624.      defined by XCur and YCur.  The display will be redrawn to reflect the
  625.      appearance with no cursor drawn.  Usually preceeds a call to NewCursor.
  626. ************************************************************************* }
  627.   procedure EraseCursor(ScrMode : short_integer) ;
  628.  
  629.     var
  630.        CurLoc  : short_integer ;
  631.        CurRec  : ScrPtr ;
  632.        CurChar : StrChar ;
  633.  
  634. { *************************************************************************
  635. ************************************************************************* }
  636.      procedure EraseIN ;
  637.      
  638.         begin
  639.           GetChar(S_CurrentRec[ScrMode], D_CurrentRec[ScrMode], CurChar, 
  640.               S_CurrentRec[ScrMode]^.XInPos + S_CurrentRec[ScrMode]^.Offset) ;
  641.  
  642.           if Resolution = 2 then
  643.              Paint_Rect(x + XCur * 8, y + YCur * Spacing - 12, 8, 16)
  644.           else
  645.              Paint_Rect(x + XCur * 8, y + YCur * Spacing - 6, 8, 8) ;
  646.  
  647.           if CurChar = chr(1) then
  648.              CurChar := ' ' ;
  649.           if CurChar = chr(3) then
  650.              CurChar := chr(1) ;
  651.         end ;
  652.  
  653. { *************************************************************************
  654. ************************************************************************* }
  655.      procedure EraseLBL ;
  656.      
  657.         begin
  658.           if CurLoc + 1 > Length(CurRec^.LabelStr) then
  659.              CurChar := ' '
  660.           else
  661.              begin
  662.                CurChar := Copy(CurRec^.LabelStr, CurLoc + 1, 1) ;
  663.                Paint_Rect(x + XCur * 8, y + YCur * Spacing - 7 * Resolution,
  664.                           8, 9 * Resolution) ;
  665.              end ;
  666.         end ;
  667.  
  668. { *************************************************************************
  669. ************************************************************************* }
  670.      procedure CurrentRecord ;
  671.      
  672.         begin
  673.           if (CurLoc > Length(CurRec^.LabelStr) + 2) AND
  674.              (CurLoc < Length(CurRec^.LabelStr) + 3 + CurRec^.Size) then
  675.              begin
  676.                if (Mode = 2) OR (Mode = 3) OR (Mode = 4) then
  677.                   EraseIN
  678.                else
  679.                   CurChar := ' ' ;
  680.              end
  681.           else
  682.              EraseLBL ;
  683.         end ;
  684.  
  685.      procedure EraseCursor5 ;
  686.  
  687.        var
  688.           HiChar : char ;
  689.      
  690.         begin
  691.           GetChar(S_CurrentRec[ScrMode], D_CurrentRec[ScrMode], 
  692.                   CurChar, S_CurrentRec[ScrMode]^.Offset + XCur - 1) ;
  693.           HiChar := CurChar[1] ;
  694.           if ord(HiChar) > $7F then 
  695.              CurChar := chr(ord(HiChar) - $80 + $41) ;
  696.  
  697.           Paint_Rect(x + (XCur - RW_Offset) * 8, 
  698.                      y + YCur * Spacing - 10 * Resolution,
  699.                      8, 8 * Resolution) ;
  700.           Draw_String(x + (XCur - RW_Offset) * 8, 
  701.                       y + YCur * Spacing - 4 * Resolution, 
  702.                       CurChar) ;
  703.         end ;
  704.  
  705.      begin
  706.        Hide_Mouse ;
  707.        if Mode = 5 then
  708.           EraseCursor5
  709.        else
  710.           begin
  711.             CheckCurLoc(CurLoc, CurRec, XCur, YCur, ScrMode) ;
  712.  
  713.             if CurLoc >= 0 then
  714.                CurrentRecord
  715.             else
  716.                CurChar := ' ' ;
  717.  
  718.             Draw_String(x + XCur * 8, y + YCur * Spacing, CurChar) ;
  719.           end ;
  720.        Show_Mouse ;
  721.      end ;
  722.  
  723. { *************************************************************************
  724.      DeleteChar is called by KB_InInput when the Delete key or
  725.      Back Space key is pressed.  The procedure is passed the current
  726.      field (CurRec : ScrPtr) to ascertain the Offset, Size and
  727.      XInPos as well as the current Data Storage record 
  728.      (DataRec : DataStorePtr) and the location within DataRec^.DataStr
  729.      of the cursor (Loc).
  730.      
  731.      The procedure calculates which string(s) to modify and then
  732.      deletes the proper character, moving all subsequent characters
  733.      to the left.  If the deletion cause movement over a 50 character
  734.      boundary, the procedure will move the characters over that
  735.      boundary.  
  736.      
  737.      After the deletion and movements are completed, a chr(1) will be
  738.      inserted into the proper DataRec^.DataStr at the logical, rather than
  739.      physical, end of the string.
  740. ************************************************************************* }
  741.   procedure DeleteChar(ScrRec  : ScrPtr ; DataRec : DataPtr ; 
  742.                        Loc     : short_integer ) ;
  743.  
  744.     var
  745.         InsLoc,
  746.         DelLoc,
  747.         Count,
  748.         MaxCount,
  749.         CheckPoint,
  750.         Location : short_integer ;
  751.         NewChar  : char ;
  752.         CurRec   : DataStorePtr ;
  753.         NextFlag : boolean ;
  754.  
  755.      begin
  756.        Location := Loc + ScrRec^.Offset - 1 ;
  757.        DetCurRec(DataRec^.Data, D_DataRec, Location) ;
  758.        CurRec := D_DataRec ;
  759.  
  760.        Count := 1 + ((ScrRec^.Offset + Loc) DIV 50) - 
  761.                      (ScrRec^.Offset DIV 50) ;
  762.        MaxCount := ((ScrRec^.Offset + ScrRec^.Size) DIV 50) - 
  763.                     (ScrRec^.Offset DIV 50) ;
  764.        CheckPoint := 1 + ((ScrRec^.Offset DIV 50) + MaxCount) * 50 - 
  765.                            ScrRec^.Offset ;
  766.        if ((ScrRec^.Offset + ScrRec^.Size) MOD 50 = 0) AND
  767.           ((ScrRec^.Offset + CheckPoint - 1) MOD 50 = 0) then
  768.           CheckPoint := 0 ;
  769.  
  770.        DelLoc := (Loc + ScrRec^.Offset) MOD 50 ;
  771.        if DelLoc = 0 then DelLoc := 50 ;
  772.        Repeat
  773.          if Loc < CheckPoint then
  774.             begin
  775.               InsLoc := 50 ;
  776.               NextFlag := true ;
  777.             end 
  778.          else
  779.             begin
  780.               InsLoc := (ScrRec^.Offset + ScrRec^.Size) MOD 50 ;
  781.               if InsLoc = 0 then InsLoc := 50 ;
  782.               NextFlag := false ;
  783.             end ;
  784.  
  785.          if NextFlag then
  786.             NewChar := CurRec^.Next^.DataStr[1]
  787.          else
  788.             if Mode = 5 then
  789.                NewChar := chr($20)
  790.             else
  791.                NewChar := chr($01) ;
  792.          Delete(CurRec^.DataStr, DelLoc, 1) ;
  793.          Insert(NewChar, CurRec^.DataStr, InsLoc) ;
  794.          CurRec := CurRec^.Next ;
  795.          Loc := (((ScrRec^.Offset DIV 50) + Count) * 50) - 
  796.                    ScrRec^.Offset + 1 ;
  797.          Count  := Count + 1 ;
  798.          DelLoc := 1 ;
  799.        Until NOT NextFlag ;
  800.      end ;
  801.  
  802. { *************************************************************************
  803.      Insert the character NewChar at the desired location in the proper
  804.      data store data string.
  805. ************************************************************************* }
  806.   procedure InsertChar(ScrRec  : ScrPtr ; DataRec : DataPtr ; 
  807.                        NewChar : char ;   Loc     : short_integer ) ;
  808.  
  809.      var
  810.         InsLoc,
  811.         DelLoc,
  812.         Count,
  813.         MaxCount,
  814.         CheckPoint,
  815.         Location : short_integer ;
  816.         NextChar : char ;
  817.         CurRec   : DataStorePtr ;
  818.         NextFlag : boolean ;
  819.         
  820.      begin
  821.        Location := Loc + ScrRec^.Offset - 1 ;
  822.        DetCurRec(DataRec^.Data, D_DataRec, Location) ;
  823.        CurRec := D_DataRec ;
  824.  
  825.        Count := 1 + ((ScrRec^.Offset + Loc) DIV 50) - 
  826.                      (ScrRec^.Offset DIV 50) ;
  827.        MaxCount := ((ScrRec^.Offset + ScrRec^.Size) DIV 50) - 
  828.                     (ScrRec^.Offset DIV 50) ;
  829.        CheckPoint := 1 + ((ScrRec^.Offset DIV 50) + MaxCount) * 50 - 
  830.                            ScrRec^.Offset ;
  831.        if ((ScrRec^.Offset + ScrRec^.Size) MOD 50 = 0) AND
  832.           ((ScrRec^.Offset + CheckPoint - 1) MOD 50 = 0) then
  833.           CheckPoint := 0 ;
  834.  
  835.        InsLoc := (Loc + ScrRec^.Offset) MOD 50 ;
  836.        if InsLoc = 0 then InsLoc := 50 ;
  837.        Repeat
  838.            if Loc < CheckPoint then
  839.               begin
  840.                 DelLoc := 50 ;
  841.                 NextFlag := true ;
  842.               end 
  843.            else
  844.               begin
  845.                 DelLoc := (ScrRec^.Offset + ScrRec^.Size) MOD 50 ;
  846.                 if DelLoc = 0 then DelLoc := 50 ;
  847.                 NextFlag := false ;
  848.               end ;
  849.  
  850.            NextChar := CurRec^.DataStr[50] ;
  851.            Delete(CurRec^.DataStr, DelLoc, 1) ;
  852.            Insert(NewChar, CurRec^.DataStr, InsLoc) ;
  853.            NewChar := NextChar ;
  854.            CurRec := CurRec^.Next ;
  855.            Loc := (((ScrRec^.Offset DIV 50) + Count) * 50) - 
  856.                      ScrRec^.Offset + 1 ;
  857.            Count  := Count + 1 ;
  858.            InsLoc := 1 ;
  859.        Until NOT NextFlag ;
  860.      end ;
  861.      
  862. { **************************  Date Routines  **************************** }
  863.  
  864. { *************************************************************************
  865. ************************************************************************* }
  866.   procedure GetAscii(Character : StrChar ; Var CharInt : short_integer) ;
  867.      
  868.      var
  869.         Counter : short_integer ;
  870.         
  871.       begin
  872.         CharInt := 0 ;
  873.         Counter := $20 ;
  874.         Repeat
  875.           if chr(Counter) = Character then
  876.              CharInt := Counter ;
  877.           Counter := Counter + 1 ;
  878.         Until (Counter > $7E) OR (CharInt > 0) ;
  879.       end ;
  880.  
  881. { *************************************************************************
  882. ************************************************************************* }     
  883.   procedure LowerCase(Var InputStr : Str255) ;
  884.  
  885.      var
  886.         CharInt   : short_integer ;
  887.         Character : StrChar ;
  888.         SaveStr   : Str255 ;
  889.  
  890.       begin
  891.         SaveStr := '' ;
  892.         Repeat
  893.           Character := Copy(InputStr, 1, 1) ;
  894.           GetAscii(Character, CharInt) ;
  895.           if ((CharInt > $40) AND (CharInt < $5B)) then
  896.              { Convert to Lower Case  }
  897.              CharInt := CharInt + $20 ;
  898.           Delete(InputStr, 1, 1) ;
  899.           SaveStr := Concat(SaveStr, chr(CharInt)) ;
  900.         Until Length(InputStr) < 1 ;
  901.         InputStr := SaveStr ;
  902.       end ;
  903.  
  904. { *************************************************************************
  905. ************************************************************************* }
  906.   procedure StripCharacter( Var Date : Str255 ) ;
  907.      
  908.      var
  909.         CharInt  : short_integer ;
  910.         Character: StrChar ;
  911.         ExitChar : boolean ;
  912.    
  913.       begin
  914.         ExitChar := false ;
  915.         Repeat
  916.           Character := Copy(Date, 1, 1) ;
  917.           GetAscii(Character, CharInt) ;
  918.           if  (CharInt = $2A) OR                        {  *  }
  919.              ((CharInt > $2F) AND (CharInt < $3A)) OR   { Number }
  920.              ((CharInt > $40) AND (CharInt < $5B)) OR   { Upper Case }
  921.              ((CharInt > $60) AND (CharInt < $7B)) then { Lower Case }
  922.              ExitChar := true
  923.           else
  924.              Delete(Date, 1, 1) ;
  925.         Until ExitChar OR (Length(Date) < 1) ;
  926.       end ;
  927.  
  928. { *************************************************************************
  929. ************************************************************************* }
  930.   procedure NumCheck(NumStr : Str255 ; Var Flag : boolean ) ;
  931.      
  932.      var
  933.         CharInt  : short_integer ;
  934.         Character: StrChar ;
  935.       
  936.       begin
  937.         Flag := true ;
  938.         Repeat
  939.           Character := Copy(NumStr, 1, 1) ;
  940.           GetAscii(Character, CharInt) ;
  941.           if (CharInt > $2F) AND (CharInt < $3A) then   { Number }
  942.              Delete(NumStr, 1, 1)
  943.           else
  944.              Flag := false ;
  945.         Until NOT Flag OR (Length(NumStr) < 1) ;
  946.       end ;
  947.  
  948. { *************************************************************************
  949. ************************************************************************* }
  950.   procedure ConvMonth(MonthStr : Str255 ; Var Month : short_integer ) ;
  951.      
  952.      var
  953.         i : short_integer ;
  954.         MonthName : array[1..12] of string[3] ;
  955.  
  956.       begin
  957.         MonthName[1]  := 'jan' ;
  958.         MonthName[2]  := 'feb' ;
  959.         MonthName[3]  := 'mar' ;
  960.         MonthName[4]  := 'apr' ;
  961.         MonthName[5]  := 'may' ;
  962.         MonthName[6]  := 'jun' ;
  963.         MonthName[7]  := 'jul' ;
  964.         MonthName[8]  := 'aug' ;
  965.         MonthName[9]  := 'sep' ;
  966.         MonthName[10] := 'oct' ;
  967.         MonthName[11] := 'nov' ;
  968.         MonthName[12] := 'dec' ;
  969.         if Length(MonthStr) > 0 then
  970.            LowerCase(MonthStr) ;
  971.         Month := 0 ;
  972.         for i := 1 to 12 do
  973.             if Pos(MonthName[i], MonthStr) > 0 then
  974.                begin
  975.                  Month := i ;
  976.                  i := 13 ;
  977.                end ;
  978.       end ;
  979.  
  980. { *************************************************************************
  981. ************************************************************************* }
  982.   procedure ConvDate(Date : Str255 ; Var Month, Day, Year : short_integer) ;
  983.      
  984.       var
  985.          DateStr  : array[1..3] of Str255 ;
  986.          i,
  987.          CharInt  : short_integer ;
  988.          Character: StrChar ;
  989.          NumFlag,
  990.          ExitChar : boolean ;
  991.  
  992.       begin
  993.         for i := 1 to 3 do
  994.             begin
  995.               DateStr[i] := '' ;
  996.               ExitChar := false ;
  997.               if Length(Date) > 0 then
  998.                  StripCharacter(Date) ;
  999.               if Length(Date) > 0 then
  1000.                  Repeat
  1001.                    Character := Copy(Date, 1, 1) ;
  1002.                    GetAscii(Character, CharInt) ;
  1003.                    if  (CharInt = $2A) OR                        {  *  }
  1004.                       ((CharInt > $2F) AND (CharInt < $3A)) OR   { Number }
  1005.                       ((CharInt > $40) AND (CharInt < $5B)) OR   { Upper Case }
  1006.                       ((CharInt > $60) AND (CharInt < $7B)) then { Lower Case }
  1007.                       begin
  1008.                         if CharInt = $2A then
  1009.                            DateStr[i] := Concat(DateStr[i], chr($30))
  1010.                         else
  1011.                            DateStr[i] := Concat(DateStr[i], Character) ;
  1012.                         Delete(Date, 1, 1) ;
  1013.                       end
  1014.                    else
  1015.                       ExitChar := true ;
  1016.                  Until ExitChar OR (Length(Date) < 1)
  1017.               else
  1018.                  DateStr[i] := '0' ;
  1019.             end ;
  1020.  
  1021.         NumCheck(DateStr[1], NumFlag) ;
  1022.         if NumFlag then
  1023.            ReadV(DateStr[1], Month)
  1024.         else
  1025.            ConvMonth(DateStr[1], Month) ;
  1026.         ReadV(DateStr[2], Day) ;
  1027.         ReadV(DateStr[3], Year) ;
  1028.  
  1029.        { Adjust for two digit year input }
  1030.         if Year < 100 then
  1031.            Year := Year + 1900 ;
  1032.       end ;
  1033.  
  1034. { *************************************************************************
  1035. EXPLAIN
  1036. ************************************************************************* }
  1037.   procedure AutoDate(    ScrRec : ScrPtr ; DataRec : DataPtr ; 
  1038.                      Var DateStr : Str255 ) ;
  1039.      
  1040.      var
  1041.         i,
  1042.         Location,
  1043.         Month,
  1044.         Day,
  1045.         Year     : short_integer ;
  1046.         TempChar : char ;
  1047.  
  1048.       begin
  1049.         Get_Date(Month,Day,Year) ;
  1050.         WriteV(DateStr, Month,'/',Day,'/', Year) ;
  1051.  
  1052.         for i := 1 to Length(DateStr) do
  1053.             begin
  1054.               TempChar := DateStr[i] ;
  1055.               Location := i + ScrRec^.Offset - 1 ;
  1056.               ModifyStr(DataRec, Location, TempChar) ;
  1057.             end ;
  1058.  
  1059.         for i := Length(DateStr) + 1 to ScrRec^.Size do
  1060.             begin
  1061.               Location := i + ScrRec^.Offset - 1 ;
  1062.               ModifyStr(DataRec, Location, chr(1)) ;
  1063.             end ;
  1064.       end ;
  1065. { **************************  Dollar Routines  *************************** }
  1066.  
  1067. { *************************************************************************
  1068. ************************************************************************* }
  1069.   procedure CheckNumber(Var NumStr : Str255) ;
  1070.      
  1071.      var
  1072.         NewChar  : StrChar ;
  1073.         SaveStr  : Str255 ;
  1074.         CharInt  : short_integer ;
  1075.  
  1076.       begin
  1077.         if Length(NumStr) > 0 then
  1078.            begin
  1079.              SaveStr := '' ;
  1080.              Repeat
  1081.                NewChar := Copy(NumStr, 1, 1) ;
  1082.                GetAscii(NewChar, CharInt) ;
  1083.                if  (CharInt = $2E) OR                         {  .  }
  1084.                   ((CharInt > $2F) AND (CharInt < $3A)) then  { Number }
  1085.                   SaveStr := Concat(SaveStr, NewChar) ;
  1086.                Delete(NumStr, 1, 1) ;
  1087.              Until Length(NumStr) < 1 ;
  1088.            end ;
  1089.  
  1090.         if (Length(SaveStr) < 1) OR (SaveStr = '.') then
  1091.            NumStr := '0' 
  1092.         else
  1093.            NumStr := SaveStr ;
  1094.       end ;
  1095.  
  1096. { *************************************************************************
  1097. ************************************************************************* }
  1098.   procedure FormatInt(ScrRec : ScrPtr ; Var IntStr : Str255 ) ;
  1099.      
  1100.      var
  1101.         IntNumber : real ;
  1102.         DecPos    : short_integer ;
  1103.  
  1104.       begin
  1105.         CheckNumber(IntStr) ;
  1106.         ReadV(IntStr, IntNumber) ;
  1107.         WriteV(IntStr, IntNumber:ScrRec^.Size + 2:1) ;
  1108.         DecPos := Pos('.', IntStr) ;
  1109.         if DecPos > 0 then
  1110.            Delete(IntStr, DecPos, Length(IntStr) - DecPos + 1) ;
  1111.       end ;
  1112.  
  1113. { *************************************************************************
  1114. ************************************************************************* }
  1115.   procedure FormatReal(ScrRec  : ScrPtr ; Var RealStr : Str255 ) ;
  1116.      
  1117.      var
  1118.         RealNumber : real ;
  1119.  
  1120.       begin
  1121.         CheckNumber(RealStr) ;
  1122.         ReadV(RealStr, RealNumber) ;
  1123.         WriteV(RealStr, RealNumber:ScrRec^.Size:DecReal) ;
  1124.       end ;
  1125.      
  1126. { *************************************************************************
  1127. ************************************************************************* }
  1128.   procedure FormatDollar(ScrRec : ScrPtr ; Var DollarStr : Str255 ) ;
  1129.      
  1130.      var
  1131.         DollarNumber : real ;
  1132.  
  1133.       begin
  1134.         CheckNumber(DollarStr) ;
  1135.         ReadV(DollarStr, DollarNumber) ;
  1136.         WriteV(DollarStr, chr($24), DollarNumber:ScrRec^.Size - 1:2) ;
  1137.       end ;
  1138.  
  1139. { *************************************************************************
  1140. ************************************************************************* }
  1141.   procedure FormatCheck( CurRec : DataPtr ) ;
  1142.      
  1143.      var
  1144.         ScrRec : ScrPtr ;
  1145.         i,
  1146.         CharInt,
  1147.         Location  : short_integer ;
  1148.         NewChar   : StrChar ;
  1149.          
  1150.       begin
  1151.         ScrRec := S_FirstRec[ScrNum] ;
  1152.         While ScrRec <> nil do
  1153.            begin
  1154.              if (ScrRec^.DataType = 'C') OR     { Integer }
  1155.                 (ScrRec^.DataType = 'E') OR     { Real    }
  1156.                 (ScrRec^.DataType = 'F') then   { Dollar  }
  1157.                 begin
  1158.                   GetStr(CurRec, FormatStr, ScrRec^.Offset, ScrRec^.Size ) ;
  1159.                   NewChar := ScrRec^.DataType ;
  1160.                   GetAscii(NewChar, CharInt ) ;
  1161.      
  1162.                    Case CharInt of
  1163.                        $43 : FormatInt(ScrRec, FormatStr) ;
  1164.                        $45 : FormatReal(ScrRec, FormatStr) ;
  1165.                        $46 : FormatDollar(ScrRec, FormatStr) ;
  1166.                    end ;
  1167.                   for i := 0 to ScrRec^.Size - 1 do
  1168.                       begin
  1169.                         Location := ScrRec^.Offset + i ;
  1170.                         NewChar := Copy(FormatStr, i + 1, 1) ;
  1171.                         GetAscii(NewChar, CharInt) ;
  1172.                         ModifyStr(D_CurrentRec[DataNum], Location, 
  1173.                                   chr(CharInt)) ;
  1174.                       end ;
  1175.                   GetStr(CurRec, FormatStr, ScrRec^.Offset, ScrRec^.Size ) ;
  1176.                   Draw_String(x + ScrRec^.XPos * 8,
  1177.                               y + ScrRec^.YPos * Spacing, FormatStr) ;
  1178.                 end ;
  1179.              ScrRec := ScrRec^.Next ;
  1180.            end ;
  1181.       end ;
  1182.  
  1183. { *************************************************************************
  1184. ************************************************************************* }
  1185.   procedure ConvDollar( RecStr : Str255 ; Var RecNum : real ) ;
  1186.      
  1187.       begin
  1188.         CheckNumber(RecStr) ;
  1189.         ReadV(RecStr, RecNum) ;
  1190.       end ;
  1191.  
  1192. { *************************************************************************
  1193. ************************************************************************* }
  1194.   procedure InitPrinter(InitStr : Str20) ;
  1195.  
  1196.     var
  1197.        NumStr,
  1198.        ModStr   : Str255 ;
  1199.        Flag     : boolean ;
  1200.        PrtNum,
  1201.        SpacePos : short_integer ;
  1202.        SpaceCheck : StrChar ;
  1203.  
  1204.      begin
  1205.        ModStr := InitStr ;
  1206.        While Length(ModStr) > 0 do
  1207.           begin
  1208.             Repeat
  1209.               SpaceCheck := Copy(ModStr,1,1) ;
  1210.               if SpaceCheck = chr($20) then
  1211.                  Delete(ModStr,1,1) ;
  1212.             Until (SpaceCheck <> chr($20)) OR (Length(ModStr) < 1) ;
  1213.             
  1214.             SpaceCheck := chr($20) ;
  1215.             While (Length(ModStr) > 0) AND (SpaceCheck = chr($20)) do
  1216.               begin
  1217.                 SpaceCheck := Copy(ModStr, Length(ModStr),1) ;
  1218.                 if SpaceCheck = chr($20) then
  1219.                    Delete(ModStr, Length(ModStr),1) ;
  1220.               end ;
  1221.             
  1222.             if Length(ModStr) > 0 then
  1223.                begin
  1224.                  SpacePos := Pos(chr($20), ModStr) ;   
  1225.                  if SpacePos > 0 then
  1226.                     begin
  1227.                       NumStr := Copy(ModStr, 1, SpacePos - 1) ;
  1228.                       Delete(ModStr, 1, SpacePos) ;
  1229.                     end
  1230.                  else
  1231.                     begin
  1232.                       NumStr := ModStr ;
  1233.                       ModStr := '' ;
  1234.                     end ;
  1235.                  
  1236.                  NumCheck(NumStr, Flag) ;
  1237.                  if Flag then
  1238.                     begin
  1239.                       ReadV(NumStr, PrtNum) ;
  1240.                       Write(Printer, chr(PrtNum)) ;
  1241.                     end ;
  1242.                end ;
  1243.           end ;
  1244.      end ;
  1245.   
  1246.  
  1247. BEGIN
  1248. END .
  1249.